home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 May / PCpro_2006_05.ISO / files / mobile / fma-2.0-stable-setup.exe / {app} / source / uPostNote.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2003-11-28  |  1.2 KB  |  58 lines

  1. unit uPostNote;
  2.  
  3. {
  4. *******************************************************************************
  5. * Descriptions: Post-a-note implementation
  6. * $Source: /cvsroot/fma/fma/uPostNote.pas,v $
  7. * $Locker:  $
  8. *
  9. * Todo:
  10. *
  11. * Change Log:
  12. * $Log: uPostNote.pas,v $
  13. * Revision 1.5  2003/11/28 09:38:07  z_stoichev
  14. * Merged with branch-release-1-1 (Fma 0.10.28c)
  15. *
  16. * Revision 1.4.2.2  2003/11/27 12:54:22  z_stoichev
  17. * Unicode support.
  18. *
  19. * Revision 1.4.2.1  2003/10/27 07:22:54  z_stoichev
  20. * Build 0.1.0 RC1 Initial Checkin.
  21. *
  22. * Revision 1.4  2003/10/13 14:15:28  z_stoichev
  23. * Added Class field (private or public).
  24. *
  25. * Revision 1.3  2003/01/30 04:15:57  warren00
  26. * Updated with header comments
  27. *
  28. *
  29. *******************************************************************************
  30. }
  31.  
  32. interface
  33.  
  34. uses
  35.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  36.   Dialogs, StdCtrls, TntStdCtrls;
  37.  
  38. type
  39.   TfrmNote = class(TForm)
  40.     Button1: TButton;
  41.     Button2: TButton;
  42.     ComboBox1: TComboBox;
  43.     Memo: TTntMemo;
  44.   private
  45.     { Private declarations }
  46.   public
  47.     { Public declarations }
  48.   end;
  49.  
  50. var
  51.   frmNote: TfrmNote;
  52.  
  53. implementation
  54.  
  55. {$R *.dfm}
  56.  
  57. end.
  58.